home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cm100exe.zip / CM100EXE.EXE / SAMPLES / MASM / A_HELLO.ASM next >
Assembly Source File  |  1991-11-16  |  235b  |  18 lines

  1. ; a_hello.asm - Function to call C function to print "Hello"
  2.  
  3. TITLE  hello.asm
  4. DOSSEG
  5. .MODEL SMALL,C
  6.  
  7. .CODE
  8.  
  9. include hello.inc
  10. ; CMAKE - INCLUDE END
  11.  
  12. a_print_hello PROC
  13.   call print_hello
  14.   ret
  15. a_print_hello ENDP
  16.  
  17. END
  18.